iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 8
0

學習目標

試著安裝下列Python開發環境

  • 雲端開發環境:Repl.it

  • 官方開發環境:IDLE

  • 其他知名環境:Pycharm


雲端IDE:Repl.it

直接拜訪下列網址(免安裝)

https://repl.it/languages/python3

https://ithelp.ithome.com.tw/upload/images/20190923/20120926bNLZDmwaKu.png

官方IDE:IDLE安裝與使用

下載IDLE

https://ithelp.ithome.com.tw/upload/images/20190924/20120926VE02b228UO.png

執行安裝精靈

https://ithelp.ithome.com.tw/upload/images/20190924/201209263WLaNfZjWl.png

撰寫程式碼(1):互動模式

啟動「Python3.7」>撰寫「print("Hello!")」

https://ithelp.ithome.com.tw/upload/images/20190924/20120926vIc6MN0d2y.png

撰寫程式碼(2):程式模式

啟動IDLE>File>New File

https://ithelp.ithome.com.tw/upload/images/20190924/20120926fxlaj3ltlO.png

撰寫>執行(Run>Run Module)

https://ithelp.ithome.com.tw/upload/images/20190924/20120926B07Znj1cdy.png

存擋>觀看結果

https://ithelp.ithome.com.tw/upload/images/20190924/201209266SVnUjTFZJ.png

存擋後可以無限次執行

https://ithelp.ithome.com.tw/upload/images/20190924/20120926fVKIMJzEzK.png

優劣分析與使用建議

https://ithelp.ithome.com.tw/upload/images/20190923/20120926QWoGo3Z9rM.png


Pycharm安裝與使用

下載Pycharm

https://www.jetbrains.com/pycharm/download/#section=windows
https://ithelp.ithome.com.tw/upload/images/20190924/20120926GUWbfBCYSf.png

安裝精靈

https://ithelp.ithome.com.tw/upload/images/20190924/20120926r8Lv4PSRSF.png

啟動Pycharm

啟動>不匯入舊設定>同意Pychrom版權宣告

https://ithelp.ithome.com.tw/upload/images/20190924/20120926jv1M17C4K9.png

指定面板風格>開啟新專案>指定專案名稱為Hello

https://ithelp.ithome.com.tw/upload/images/20190924/20120926J0eJjm6TZ0.png

關閉每日秘訣>抵達主畫面

https://ithelp.ithome.com.tw/upload/images/20190924/201209263weCzJrZ8y.png

優劣分析與使用建議

https://ithelp.ithome.com.tw/upload/images/20190924/20120926SMCAP7ob4u.png

雲端 Python5.1

  • https://www.python.org/ ←使用 Google Chrome 瀏覽器

    • 點擊以下紅框處

    https://ithelp.ithome.com.tw/upload/images/20191016/20120926sKX0c8FMJh.png
    • 接著出現 Python 提示符號 >>>,可開始測試

  • >>>HELP()

    • Help> keywords

    • Help> print

    • Help> quit

    • >>>help (print)

  • 注意事項

    • Python 程式中,大、小寫字母是有差別的。

      • Print ('test'),P 大寫,錯誤

      • print ('test'),OK

      • A 與 a 不同

      https://ithelp.ithome.com.tw/upload/images/20191016/20120926MCUfndJ4Jj.png
    • 程式不能隨意縮排

      • print('test1')print('test2')# 這是錯的

    • print 基本注意事項

      • print('This's a test'),錯誤!! 因為中間的單引號

      • 脫逸序列(escape sequence)

      • \n :換行

      • \t :跳 8 格(Tab)

      • \ :輸出反斜線

      • " :輸出雙引號

      • ' :輸出單引號

      • print('This's a test')

  • 其他

    • 註解

      • 單列:#開頭 (不限定放置最左邊開始處)

      • 多列:'''開頭 …. 結尾''' (頭尾各三個單引號或雙引號,當中內容不限定一列)

    • 強迫換行

      • >>>a=(2+3)

      • >>>a=(2+3)

    • 合併 ;

      • >>>a=10; b=20 #不建議用

    • PYTHON 3 預設的檔案編碼格式為 UTF-8

    • 程式錯誤類型

      • 語法錯誤

      • 邏輯錯誤

      • 執行中的錯誤 (EX: 除數除到 0)

  • PYTHON 提供的說明文件

  • 開始/程式集/python/python manuals

    • →內容/the python tutorial

    • →內容/the Python Standard Library/Built-in Fundtions

  • https://www.python.org/→ documentation / tutorial

  • 開始/程式集/python/python Module docs


重點整理

https://ithelp.ithome.com.tw/upload/images/20190924/20120926z1AQphwgs0.png


上一篇
Day7- Python安裝開發環境
下一篇
Day9-規劃、除錯、保存不同版本的程式碼之重點篇
系列文
從不懂,到玩上手的Python語言30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言